Module-level declarations
Types
Link copied to clipboard
struct content_dto
Link copied to clipboard
struct dialogue_dto
Link copied to clipboard
Link copied to clipboard
struct dialogues_per_source_dto
Link copied to clipboard
entity general_translation
Link copied to clipboard
struct general_translation_dto
Link copied to clipboard
struct general_translations_dto
Link copied to clipboard
entity last_operation
Link copied to clipboard
entity last_upsert
Link copied to clipboard
struct last_upsert_dto
Link copied to clipboard
object localization_config
Link copied to clipboard
struct module_args
Functions
Queries
Link copied to clipboard
@mount("localization.get_all_dialogues")
query get_all_dialogues(cursor: page_cursor): dialogues_grouped_by_source_dto
Link copied to clipboard
@mount("localization.get_all_general_translations")
query get_all_general_translations(cursor: page_cursor): general_translations_dto
Link copied to clipboard
@mount("localization.get_dialogues")
query get_dialogues(source: text, cursor: page_cursor): dialogues_grouped_by_source_dto
Link copied to clipboard
@mount("localization.get_general_translation")
query get_general_translation(name: text): general_translation_dto?
Link copied to clipboard
@mount("localization.get_last_updated_for_sources")
query get_last_updated_for_sources(sources: list<text>): list<last_upsert_dto>
Operations
Link copied to clipboard
@mount("localization.batch_upsert_dialogues")
operation batch_upsert_dialogues(source_objects: list<dialogues_per_source_dto>)
Link copied to clipboard
@mount("localization.batch_upsert_general_translation")
operation batch_upsert_general_translation(translations: list<content_dto>)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@mount("localization.delete_npc_dialogue")
operation delete_npc_dialogue(source: text, content_name: text, account_id: byte_array, auth_descriptor_id: byte_array)
Link copied to clipboard
@mount("localization.upsert_general_translation")
operation upsert_general_translation(content_name: text, content_value: text)
Link copied to clipboard
@mount("localization.upsert_npc_dialogue")
operation upsert_npc_dialogue(source: text, content_name: text, content_value: text, account_id: byte_array, auth_descriptor_id: byte_array)